.div0 {
  height: 300px;
  max-width: 1425px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

.div0 > div {
  height: 300px;
  width: 4200px;
  background: url(../picture/1234.jpg);
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
   transform: translate3d(0, 0, 0);
}
.div0 .div1 {
  animation: moveSlideshow 40s linear infinite;
}
.div0 .div2 {
  opacity: 0;
  transition: opacity 0.5s ease-out;
  /*background-position: 0 -200px;*/
  animation: moveSlideshow 15s linear infinite;
}
.div0:hover .div2 {
  opacity: 1;
}

@keyframes moveSlideshow {
  100% { 
    transform: translateX(-66.6666%);  
  }
}


